home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 29A.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  469b  |  26 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    i=0, a=100;
  11.     while(i<3){
  12.         printf("-- top of loop --\n");
  13.  
  14.         if((a+i)==100)
  15.             a++;
  16.         else if((a+i)==101){
  17.             a++;
  18.             printf("** execution continue \n");
  19.             continue;
  20.         }
  21.         else
  22.             i++;
  23.         printf("\ta=%d...i=%d\n",a,i);
  24.     }
  25. }
  26.